﻿.carousel-inner img {
    border-radius: 10px; /* Rounded corners */
    box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.3); /* Shadow */
}
.section {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.5s ease-in-out;
}

    .section.visible {
        opacity: 1;
        transform: translateY(0);
    }